abe2e3e7d024bb0dc70f24a555ebbabb2577f2a3,src/leola/vm/compiler/BytecodeGeneratorVisitor.java,BytecodeGeneratorVisitor,visit,#OnExpr#,1295

Before Change


			nextOnLabel = asm.ifeq();						
			Stmt stmt = clause.getStmt();
			asm.dup();
			int index = asm.addLocal(clause.getIdentifier());
			asm.storelocal(index);
			
			stmt.visit(this);
			

After Change


			nextOnLabel = asm.ifeq();						
			Stmt stmt = clause.getStmt();
			asm.dup();
			asm.addAndstorelocal(clause.getIdentifier());
			
			stmt.visit(this);